home *** CD-ROM | disk | FTP | other *** search
/ Webster's Millennium Amer…Sign Language Dictionary / ASL.ISO / mac / SKILLS.dir / 00052_Script_all sessions clk script < prev    next >
Text File  |  2001-09-05  |  481b  |  14 lines

  1. on mouseDown
  2.   global gDataType,gDataSource,gHistoryData,gUserData
  3.   set gHistoryData = []
  4.   set the itemDelimiter to "*"
  5.   tell window "dData" to put the text of cast integer(item 6 of gUserData) into strList
  6.   set the itemDelimiter to ","
  7.   
  8.   do "set gHistoryData = "&strList
  9.   global reviewlisting
  10.   cLists gHistoryData,reviewlisting
  11.   set gDataSource = "all sessions"
  12.   
  13.   if count(gHistoryData) = 0 then set gDataSource = "entire dictionary" --"all sessions"
  14. end